home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / midi / chrdmstr.lha / chordmaster / source / MatchList.h < prev    next >
C/C++ Source or Header  |  1992-10-23  |  223b  |  14 lines

  1. #define NULL 0
  2.  
  3. struct list_match {
  4.      char *encoding;
  5.      char *root;
  6.      char *name;
  7.      int match;
  8.      struct list_match *next;
  9.      };
  10.  
  11. typedef struct list_match MATCH_ELEMENT;
  12. typedef MATCH_ELEMENT *MATCH_LIST;
  13.  
  14.